From d6f8b69ced6deb05dc56ad4363cfa9e55ddcd493 Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Thu, 1 Feb 2007 15:30:22 +0000 Subject: [PATCH] Fix HVM save/restore wrt console handling. From Tim Deegan . Signed-off-by: Ewan Mellor --- tools/python/xen/xend/XendConfig.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/python/xen/xend/XendConfig.py b/tools/python/xen/xend/XendConfig.py index 220c211bad..7753c89cb1 100644 --- a/tools/python/xen/xend/XendConfig.py +++ b/tools/python/xen/xend/XendConfig.py @@ -679,6 +679,9 @@ class XendConfig(dict): if self['devices'][console_uuid][1].get('protocol') == 'rfb': has_rfb = True break + if self['devices'][console_uuid][0] == 'vfb': + has_rfb = True + break if not has_rfb: dev_config = ['vfb'] -- 2.30.2